home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / object oriented files / CPathArray.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-05  |  711 b   |  31 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CPathTable.h
  3.  
  4.         Interface for PathTable class.
  5.         
  6.     SUPERCLASS = CArrayPane
  7.     
  8.     Copyright © 1991 Symantec Corporation. All rights reserved.
  9.     
  10.     TCL 1.1.3 Changes
  11.     [
  12.         - use #pragma once
  13.     ]
  14.  ******************************************************************************/
  15.  
  16. #pragma once
  17.  
  18. #include <CArrayPane.h>
  19.  
  20. class CPathTable : public CArrayPane
  21. {
  22. public:
  23.     void IPathTable( CView *anEnclosure, CBureaucrat *aSupervisor,
  24.                             short aWidth, short aHeight,
  25.                             short aHEncl, short aVEncl,
  26.                             SizingOption aHSizing, SizingOption aVSizing);
  27.     
  28.     virtual void GetCellText( Cell aCell, short availableWidth, StringPtr itsText);
  29.  
  30. };
  31.